home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-249.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  106 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12414);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2003-0689");
  13.  
  14.  name["english"] = "RHSA-2003-249: glibc";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated glibc packages that fix a number of bugs as well as a buffer
  21.   overflow issue are now available.
  22.  
  23.   The GNU libc package (known as glibc) contains the standard C libraries
  24.   used by applications.
  25.  
  26.   A bug in the getgrouplist function can cause a buffer overflow if
  27.   the size of the group list is too small to hold all the user\'s groups.
  28.   This overflow can cause segmentation faults in user applications, which may
  29.   have security implications, depending on the application in question. This
  30.   vulnerability exists only when an administrator has placed a user in a
  31.   number of groups larger than that expected by an application. Therefore,
  32.   there is no risk in instances where users are members of few groups. The
  33.   Common Vulnerabilities and Exposures project (cve.mitre.org) has assigned
  34.   the name CAN-2003-0689 to this issue.
  35.  
  36.   In addition, a number of other bugs in glibc have been fixed:
  37.  
  38.   - An error prevented gdb from correctly debugging programs linked to
  39.   libpthread.
  40.  
  41.   - A race condition existed in the malloc routine for IA64 platforms, which
  42.   could cause memory corruption.
  43.  
  44.   - An error in pthread_spinlocks prevents spinlocks from functioning
  45.   correctly on IA64 platforms.
  46.  
  47.   All users should upgrade to these errata packages, which contain patches to
  48.   the glibc libraries correcting these issues.
  49.  
  50.  
  51.  
  52.  
  53. Solution : http://rhn.redhat.com/errata/RHSA-2003-249.html
  54. Risk factor : High';
  55.  
  56.  script_description(english:desc["english"]);
  57.  
  58.  summary["english"] = "Check for the version of the glibc packages";
  59.  script_summary(english:summary["english"]);
  60.  
  61.  script_category(ACT_GATHER_INFO);
  62.  
  63.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  64.  family["english"] = "Red Hat Local Security Checks";
  65.  script_family(english:family["english"]);
  66.  
  67.  script_dependencies("ssh_get_info.nasl");
  68.  
  69.  script_require_keys("Host/RedHat/rpm-list");
  70.  exit(0);
  71. }
  72.  
  73. include("rpm.inc");
  74. if ( rpm_check( reference:"glibc-2.2.4-32.8", release:"RHEL2.1") )
  75. {
  76.  security_hole(0);
  77.  exit(0);
  78. }
  79. if ( rpm_check( reference:"glibc-common-2.2.4-32.8", release:"RHEL2.1") )
  80. {
  81.  security_hole(0);
  82.  exit(0);
  83. }
  84. if ( rpm_check( reference:"glibc-devel-2.2.4-32.8", release:"RHEL2.1") )
  85. {
  86.  security_hole(0);
  87.  exit(0);
  88. }
  89. if ( rpm_check( reference:"glibc-profile-2.2.4-32.8", release:"RHEL2.1") )
  90. {
  91.  security_hole(0);
  92.  exit(0);
  93. }
  94. if ( rpm_check( reference:"nscd-2.2.4-32.8", release:"RHEL2.1") )
  95. {
  96.  security_hole(0);
  97.  exit(0);
  98. }
  99.  
  100. if ( rpm_exists(rpm:"glibc-", release:"RHEL2.1") )
  101. {
  102.  set_kb_item(name:"CAN-2003-0689", value:TRUE);
  103. }
  104.  
  105. set_kb_item(name:"RHSA-2003-249", value:TRUE);
  106.